home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / IToolTip.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  269 b   |  15 lines

  1. package mx.core
  2. {
  3.    import flash.geom.Rectangle;
  4.    
  5.    public interface IToolTip extends IUIComponent
  6.    {
  7.       function get screen() : Rectangle;
  8.       
  9.       function get text() : String;
  10.       
  11.       function set text(param1:String) : void;
  12.    }
  13. }
  14.  
  15.